home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILFILE / UNPROPTC.LZH / FILECMD.PAT < prev    next >
Text File  |  1984-09-16  |  2KB  |  40 lines

  1.  How to:
  2. - Add color to IBM's FileCommand, and
  3. - Make it run faster on some video boards.
  4.  ----
  5.   I set out to make every program I run use color, partly because the
  6. default white isn't "easy on the eyes", & because cause the screen just
  7. looks more interesting in color.
  8.   As an exercise, I've modified IBM's FileCommand to have some
  9. "interesting" colors.  Here's how you can patch it:
  10. - DEBUG f.com (or whatever you call it).
  11. - Using the E command, examine each address to verify before changing
  12. it.  After making the changes, type: "n fcolor.com", then "W", then "Q".
  13. ..
  14.  ADDR WAS NOW
  15.  ---- --- ---
  16.  0A96  70  6E  Function key strings on bottom
  17.  0A89  0F  0E  Function key numbers on bottom
  18.  0BC3  70  70  Added file description color (2nd bottom line)
  19.  0B37  70  6E  Status line
  20.  0C4E  07  06  File name color from white to brown ("amber" on my Taxan)
  21.  0C5A  07  07  After executing a command, leave it low-white
  22.  0C89  07  02  File status information - make it green
  23.  14FE  0F  0F  Commands you key in - leave them intense white.
  24.  3C7A  0F  09  Make IBM logo "IBM blue" on initial screen
  25.  3CEB  07  06  Make serial #, author (etc) on logo screen "brown".
  26.  ----
  27.   If you have a monitor and graphics board that doesn't need to wait
  28. for the retrace time to avoid flicker when the screen is updated, make
  29. the following patch: 968 was "push cx" - make it a "ret".  This will
  30. skip the "wait for retrace" routine.  This significantly improves
  31. FileCommand on my Amdek Mai, because the screen no longer completely
  32. blanks and flashes when scrolling.  HEY: could someone with an IBM
  33. color board tell me how this looks if you do it?  I am just curious.
  34.  ----
  35.   If you don't like the logo screen, consider that it is "something
  36. to stare at while the directory is being read".  If that doesn't
  37. satisfy you, check 3c57, and if it was "mov dx,100", make it "JMP 3D2F".
  38.  ----
  39.  07/15/84, Ward Christensen 76703,302
  40.